home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / index.arc / AECOMMON.BAS < prev    next >
Encoding:
BASIC Source File  |  1987-08-31  |  1.0 KB  |  26 lines

  1. rem $linesize:132
  2. rem $title:'(c) Copyright 1987, Roy Barrow.'
  3. rem $subtitle:'COMMON definitions for use with AELIB.'
  4. '
  5. '  Refer to page -188- of the Microsoft QuickBASIC 2.00 Compiler Guide.
  6. '
  7. '  This revision: 10-January-1987    
  8. '  (c) Copyright 1986,1987 Roy Barrow
  9. '
  10.  
  11. OPTION BASE 0                                            ' For no underflow
  12.  
  13.  
  14. DIM   idx.nam$(10%),xk$(10%,6%),xh%(10%,4%)              ' Index variables
  15.  
  16. COMMON   /AE.INDEX/     idx.nam$(),xk$(),xh%()           ' Index variables
  17. COMMON   /AE.ERR/         aesb.fatal%,aesb.warning%        ' Sub Routine Errors
  18.  
  19. '
  20. '  *NOTE*   All of the above variables should in NO WAY be redefined or
  21. '           tampered with. By doing so, the performance of AELIB routines
  22. '           will be altered unexpectedly. Many of the variables will
  23. '           contain garbage until initialised. Most of these variables
  24. '           will be initialised by subroutines.
  25.  
  26.